home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / os2 / yaos101.zip / yaosinst.cmd < prev   
OS/2 REXX Batch file  |  1996-07-01  |  550b  |  18 lines

  1. /* YAOS installation program */
  2.  
  3. call RxFuncAdd "SysLoadFuncs", "RexxUtil", "SysLoadFuncs"
  4. call SysLoadFuncs
  5.  
  6. say "Installing YAOS version 1.01 (c) 1996 by LEE Cjin Pheow"
  7. say " "
  8.  
  9. curdir = directory()
  10.  
  11. /* create a new desktop object for YAOS */
  12. If SysCreateObject("WPProgram", "Yet Another OS/2 Shell v1.01", "<WP_DESKTOP>",,
  13.      "EXENAME="curdir"\YAOS.EXE;PARAMETERS=-ws yaos.rc;STARTUPDIR="curdir, "replace") Then
  14.    Say 'YAOS program object has been created successfully.'
  15.    Else Say 'Cannot create YAOS program object!'
  16.  
  17. exit
  18.